home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr28 / mxmnu239.zip / CUSTOM.INC < prev    next >
Text File  |  1993-03-22  |  2KB  |  84 lines

  1. Comment
  2. ========================================================================
  3.  
  4. MarxMenu supports several "Look and Feel" options. You can choose from:
  5.  
  6. NOVELL.INC
  7. BLOCK.INC
  8. GRID.INC
  9. SABER.INC
  10.  
  11. By including different files MarxMenu compiles the same menu with
  12. completely different looks.
  13.  
  14. Colors are set by editing these include files.
  15.  
  16. ========================================================================
  17. EndComment
  18.  
  19. ;----- Select include file.
  20.  
  21. Include 'NOVELL.INC'
  22. ;Include 'BLOCK.INC'
  23. ;Include 'GRID.INC'
  24. ;Include 'SABER.INC'
  25.  
  26. ;----- Wondowing Support Logic
  27.  
  28. Include 'WINSUP.INC'
  29.  
  30. ;----- Turn this on if you like the Greek Column Look.
  31.  
  32. Greek On
  33.  
  34. ;----- Keeps workstation time in sync with server clock
  35.  
  36. if NovConnection > 0 then Now = NovServerTime
  37.  
  38. OnScreenOnly ;limits choices to those on the screen only.
  39. AllowEsc
  40. AllowAbort Off
  41. UseArrows
  42. LookSetup
  43.  
  44. ;================< FEATURE CONTROL AREA >================
  45.  
  46. ;----- WORM.INC loads the example custom screen blanker program
  47.  
  48.   Include 'WORM.INC'
  49.  
  50. ;----- CRAWL.INC allows you to have moving text on the bottom line
  51.  
  52.   Include 'CRAWL.INC'
  53.  
  54. ;----- Set up the blank screen message if you want one.
  55.  
  56.   BlankMessage = ''
  57.  
  58. ;----- Change BlankTime to 0 if you do not want to blank the screen.
  59.  
  60.   BlankTime = 5
  61.  
  62. ;----- Change LogoffTime to number of minutes if you want timed Logoff.
  63.  
  64.   LogoffTime = 0
  65.  
  66. ;----- Use Novell Password or LockWord to unlock the screen blanker.
  67.  
  68. if NetworkVersion
  69.    if NovConnection <> 0
  70.       UseNovPassword Off    ;change to On to activate this feature
  71.    else
  72.       LockWord = ''         ;place lockword here for non novell menus
  73.    endif
  74. endif
  75.  
  76. ;----- This makes the menu come back to the same menu level.
  77.  
  78.   SavePosition On
  79.  
  80. ;----- Control Explode effects.
  81.  
  82.   Explode On
  83.  
  84.